← Index
NYTProf Performance Profile   « line view »
For starman worker -M FindBin --max-requests 50 --workers 2 --user=kohadev-koha --group kohadev-koha --pid /var/run/koha/kohadev/plack.pid --daemonize --access-log /var/log/koha/kohadev/plack.log --error-log /var/log/koha/kohadev/plack-error.log -E deployment --socket /var/run/koha/kohadev/plack.sock /etc/koha/sites/kohadev/plack.psgi
  Run on Fri Jan 8 14:31:06 2016
Reported on Fri Jan 8 14:33:30 2016

Filename(eval 1143)[/usr/share/perl5/POSIX/strftime/Compiler.pm:351]
StatementsExecuted 0 statements in 0s
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
0000s0sPOSIX::strftime::Compiler::::__ANON__[:12]POSIX::strftime::Compiler::__ANON__[:12]
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1sub {
2 if ( @_ != 9 && @_ != 6 ) {
3 Carp::croak 'Usage: strftime(sec, min, hour, mday, mon, year, wday = -1, yday = -1, isdst = -1)';
4 }
5
6 if ( @_ == 6 ) {
7 my $sec = $_[0];
8 @_ = gmtime Time::Local::timegm(@_);
9 $_[0] = $sec;
10 }
11130µs POSIX::strftime(q!! . '%z' . q!!,@_);
# spent 30µs making 1 call to POSIX::strftime
12 }
13;